home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM17.FTP < prev    next >
Text File  |  1998-06-26  |  586b  |  26 lines

  1. //  Requires: version 2.1d
  2. //
  3. //  Script example to illustrate new script commands in
  4. //  version 2.1d.
  5. //
  6. //  new:  day, date, time environment strings are now
  7. //        automatically available
  8. //
  9. //  new:  IF TIMERANGE starttime stoptime .......
  10. //
  11. //        This if condition allows for a time check
  12. //        between a start and stop time.  All times are
  13. //        in hh:mm:ss format.
  14. //
  15.  
  16.   log date: %date%  Time: %time%  Day: %day%
  17.  
  18. label again
  19.  
  20.   if timerange 18:29:00 18:30:30 then begin
  21.      Log waiting.... %time%
  22.      goto again
  23.   endif
  24.  
  25.   Log Done!
  26.